home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 13
/
Aminet 13 - August 1996.iso
/
Aminet
/
gfx
/
conv
/
WhirlGIF20.lha
/
WhirlGIF
/
src.original
/
Makefile
next >
Wrap
Makefile
|
1996-03-03
|
582b
|
44 lines
#
# Makefile for whirlgif utility
#
#####################################
# Choose your favorite compiler.
#
# GNU C
CC = gcc
#
# standard
#CC = cc
#####################################
# Optimization flags
#
# GNU C
#OPTIMIZE= -fcombine-regs -O
# standard
OPTIMIZE = -O
#####################################
# Debug flags
#
#DEBUG = -g
#DEBUG = -ggdb
#####################################
#
#
CFLAGS = $(DEBUG) $(OPTIMIZE) $(INCLUDEDIR)
all: whirlgif
whirlgif:
$(CC) $(CFLAGS) -o whirlgif whirlgif.c
# DO NOT DELETE THIS LINE
whirlgif: whirlgif.h
whirlgif: whirlgif.c